Run a bash command with every line of a text file as a parameter
$ while read in; do command_to_execute "$in"; done < file_name
shell is cool!
Run a bash command with every line of a text file as a parameter
$ while read in; do command_to_execute "$in"; done < file_name